/* style.css */

/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f8ff;
    color: #333;
    padding: 10px;
}

/* Header styling */
header {
    background-color: #4ab1d8;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav {
    margin-top: 10px;
}

.categoryList {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.categoryList li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.categoryList li a:hover {
    text-decoration: underline;
}

/* Main content */
main {
    margin-top: 30px;
}

.penguinList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.penguinCard {
    background-color: white;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.penguinCard h2 {
    color: #2a8cad;
    margin-bottom: 10px;
}

/* Footer styling */
footer {
    margin-top: 40px;
    text-align: center;
    padding: 15px;
    background-color: #4ab1d8;
    color: white;
    font-size: 0.9em;
}
